home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / afxvbx.zip / APP.H < prev    next >
C/C++ Source or Header  |  1993-06-02  |  1KB  |  29 lines

  1. /*------------------------------------------------------------------------------* 
  2.  |                                                                              |
  3.  |                          File Name: CALLER.H                                 |
  4.  |                                                                              |
  5.  | Description:  This file contains the class definitions for this application. |
  6.  |                                                                              |
  7.  | History:      Date              Author                Comment                |
  8.  |             05/23/93      Pran Punniamoorthy          Created                |
  9.  |                                                                              |
  10.  *------------------------------------------------------------------------------*/
  11. #ifndef __HELLO_H__
  12. #define __HELLO_H__
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15.  
  16. // CTheApp:
  17. // See hello.cpp for the code to the InitInstance member function.
  18. //
  19. class CTheApp : public CWinApp
  20. {
  21. public:
  22.     BOOL InitInstance();
  23. };
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26.  
  27. #endif // __HELLO_H__
  28.  
  29.